#include<bits/stdc++.h>
using namespace std;
#define dbg(x...) do { cout << #x << " -> "; err(x); } while (0);
void err() {cout << endl; }
template<class T, class... Ts> void err(const T& arg, const Ts&... args) {cout << arg << " "; err(args...); }
#define int long long
#define pb push_back
#define pii pair<int,int>
#define endl '\n'
const int mod = 1e9 + 7;
const int N = 3e5 + 5;
const int M = 50;
void solve() {
int n; cin >> n;
vector<int> a(n), p(n);
for (int i = 0; i < n; i++)
cin >> a[i];
iota(p.begin(), p.end(), 0);
sort(p.begin(), p.end(), [&](int i, int j){
return a[i] < a[j];
});
int l = 0, r = n - 1, os = 0;
vector<int> ans(n, 0);
for (int i = n; i >= 1; i--) {
// dbg(i, os, l, r, a[p[l]] - os, a[p[r]] - os);
if (a[p[l]] - os != 0 && a[p[r]] - os != i) {
cout << "NO" << endl;
return;
}
if (a[p[l]] - os == 0) {
ans[p[l]] = -i;
l++;
} else {
ans[p[r]] = i;
os++;
r--;
}
}
cout << "YES" << endl;
for (auto &x : ans)
cout << x << " ";
cout << endl;
}
signed main () {
std::ios::sync_with_stdio(false);
std::cin.tie(0);
std::cout.tie(0);
int testcase; cin >> testcase;
while (testcase--)
solve();
return 0;
}
1622C - Set or Decrease | 1682A - Palindromic Indices |
903C - Boxes Packing | 887A - Div 64 |
755B - PolandBall and Game | 808B - Average Sleep Time |
1515E - Phoenix and Computers | 1552B - Running for Gold |
994A - Fingerprints | 1221C - Perfect Team |
1709C - Recover an RBS | 378A - Playing with Dice |
248B - Chilly Willy | 1709B - Also Try Minecraft |
1418A - Buying Torches | 131C - The World is a Theatre |
1696A - NIT orz | 1178D - Prime Graph |
1711D - Rain | 534A - Exam |
1472A - Cards for Friends | 315A - Sereja and Bottles |
1697C - awoo's Favorite Problem | 165A - Supercentral Point |
1493A - Anti-knapsack | 1493B - Planet Lapituletti |
747B - Mammoth's Genome Decoding | 1591C - Minimize Distance |
1182B - Plus from Picture | 1674B - Dictionary |